home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-06 | 1.0 KB | 76 lines |
- !if $d(DEBUG)
- DBG= -g
- all: clean fntool
- !endif
-
- CCOPT= -O -Wall $(DBG)
-
- .c.o:
- gcc -c $(CCOPT) $*.c
-
- O= \
- readbdf.o \
- readfna.o \
- readfnt.o \
- readc.o \
- writefna.o \
- writefnt.o \
- writedir.o \
- writec.o \
- process.o \
- convert.o \
- utils.o \
- show.o \
- edit.o \
- widgets.o \
- main.o
-
- fntool.exe: $(O)
- gcc -o fntool -L../lib @&&!
- $(O)
- !
- strip fntool
- aout2exe fntool
- del fntool
-
- fntool: $(O)
- gcc -o fntool -L../lib @&&!
- $(O)
- !
-
- clean:
- del *.o
- del *.exe
- del fntool
-
- readbdf.o: fntool.h
-
- readfna.o: fntool.h
-
- readfnt.o: fntool.h ../include/grx.h ../include/grxfile.h
-
- readc.o: fntool.h
-
- writefna.o: fntool.h
-
- writefnt.o: fntool.h ../include/grx.h ../include/grxfile.h
-
- writedir.o: fntool.h ../include/grx.h ../include/grxfile.h
-
- writec.o: fntool.h
-
- process.o: fntool.h
-
- convert.o: fntool.h
-
- utils.o: fntool.h
-
- show.o: fntool.h ../include/grx.h
-
- edit.o: fntool.h ../include/grx.h
-
- widgets.o: fntool.h ../include/grx.h
-
- main.o: fntool.h
-